print("Gleitkommazahlen in Python")
print(0.5)
print(-123.456)
print(+1.337)
print()
print(1.5 / 2.1)
print()
print(12.345e3)
print(12.345E3)